翻訳と辞書
Words near each other
・ Dirty Looks (New York band)
・ Dirty Looks (song)
・ Dirty Loops
・ Dirty Love
・ Dirty Love (film)
・ Dirty (One-Eyed Doll album)
・ Dirty (Sonic Youth album)
・ Dirty Acres
・ Dirty Americans
・ Dirty Ammo
・ Dirty Baby
・ Dirty Bailarina
・ Dirty Bass
・ Dirty Beaches
・ Dirty Beasts
Dirty bit
・ Dirty Blonde
・ Dirty Blonde (play)
・ Dirty Blondes from Beyond
・ Dirty blues
・ Dirty Blvd.
・ Dirty bomb
・ Dirty Bomb (album)
・ Dirty bomb (disambiguation)
・ Dirty Bomb (film)
・ Dirty Bomb (video game)
・ Dirty Boots
・ Dirty Business
・ Dirty Cash (Money Talks)
・ Dirty Chamber


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Dirty bit : ウィキペディア英語版
Dirty bit

A dirty bit or modified bit is a bit that is associated with a block of computer memory and indicates whether or not the corresponding block of memory has been modified. The dirty bit is set when the processor writes to (modifies) this memory. The bit indicates that its associated block of memory has been modified and has not yet been saved to storage. When a block of memory is to be replaced, its corresponding dirty bit is checked to see if the block needs to be written back to secondary memory before being replaced or if it can simply be removed. Dirty bits are used by the CPU cache and in the page replacement algorithms of an operating system.
Dirty bits can also be used in Incremental computing by marking segments of data that need to be processed or have yet to be processed. This technique can be used with delayed computing to avoid unnecessary processing of objects or states that have not changed. When the model is updated (usually by multiple sources), only the segments that need to be reprocessed will be marked dirty. Afterwards, an algorithm will scan the model for dirty segments and process them, marking them as clean. This ensures the unchanged segments are not recalculated and saves processor time.
== Page replacement ==
When speaking about page replacement, each page (frame) may have a modify bit associated with it in the hardware. The dirty bit for a page is set by the hardware whenever any word or byte in the page is written into, indicating that the page has been modified. When we select a page for replacement, we examine its modify bit. If the bit is set, we know that the page has been modified since it was read in from the disk. In this case, ''we must write that page to the disk''. If the dirty bit is not set, however, the page has not been modified since it was read into memory. Therefore, if the copy of the page on the disk has not been overwitten (by some other page, for example), then we can avoid writing the memory page to the disk: it is already there.
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.